[codex] update Microsoft Agent Framework to 1.0.0#41
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the Microsoft Agent Framework (MAF) integration to the stable 1.0.0 release and refreshes related documentation to reflect the new baseline within OpenClaw.NET’s optional orchestrator backend.
Changes:
- Bump
Microsoft.Agents.AIfrom1.0.0-rc3to1.0.0in the MAF adapter. - Align the MAF adapter’s
Microsoft.Extensions.*package references to10.0.5. - Update README and MAF readiness notes to reflect the stable 1.0 release and updated risk posture.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| src/OpenClaw.MicrosoftAgentFrameworkAdapter/OpenClaw.MicrosoftAgentFrameworkAdapter.csproj | Updates MAF + related Microsoft.Extensions.* package versions for the adapter. |
| README.md | Documents MAF 1.0 as an optional orchestrator backend and updates the capability table entry. |
| docs/experiments/maf-aot-jit-readiness.md | Adjusts readiness/risk notes now that MAF is no longer prerelease/RC. |
🤖 Augment PR SummarySummary: Updates the Microsoft Agent Framework (MAF) adapter from the Changes:
🤖 Was this summary useful? React with 👍 or 👎 |
| <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="10.0.3" /> | ||
| <PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.3" /> | ||
| <PackageReference Include="Microsoft.Agents.AI" Version="1.0.0" /> | ||
| <PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.5" /> |
There was a problem hiding this comment.
Microsoft.Extensions.* here is pinned to 10.0.5, but other projects in the solution still pin 10.0.4/10.0.3 (e.g., src/OpenClaw.Tests/OpenClaw.Tests.csproj and src/OpenClaw.SemanticKernelAdapter/OpenClaw.SemanticKernelAdapter.csproj). When building with OpenClawEnableMafExperiment=true (so this adapter is referenced), that version skew can surface as NU1605 “package downgrade” warnings which become build failures under TreatWarningsAsErrors.
Severity: medium
🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.
Summary
Validation